projects
/
gtk4.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f868a6e
)
Fix gdk_window_set_icon_name
author
Matthias Clasen
<mclasen@redhat.com>
Fri, 12 Mar 2010 20:52:36 +0000
(15:52 -0500)
committer
Matthias Clasen
<mclasen@redhat.com>
Fri, 12 Mar 2010 20:59:59 +0000
(15:59 -0500)
A typo kept this from working on toplevel windows.
Reported in bug 612346.
gdk/x11/gdkwindow-x11.c
patch
|
blob
|
history
diff --git
a/gdk/x11/gdkwindow-x11.c
b/gdk/x11/gdkwindow-x11.c
index c6d608cd28b44817d5adb8d013257c10933d3c31..455a88bf2ee02364ebe7613218696ae4c99d326a 100644
(file)
--- a/
gdk/x11/gdkwindow-x11.c
+++ b/
gdk/x11/gdkwindow-x11.c
@@
-3909,7
+3909,7
@@
gdk_window_set_icon_name (GdkWindow *window,
GdkDisplay *display;
if (GDK_WINDOW_DESTROYED (window) ||
- WINDOW_IS_TOPLEVEL_OR_FOREIGN (window))
+
!
WINDOW_IS_TOPLEVEL_OR_FOREIGN (window))
return;
display = gdk_drawable_get_display (window);